home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Extra 1997 #1 / Amiga Plus Extra 1997 #1.iso / programme / tools / leoutils / makefile < prev    next >
Makefile  |  1996-03-13  |  598b  |  25 lines

  1. all: leotune guidecat words
  2.  
  3. leotune: LeoTune.c libleo.a
  4.     gcc -funsigned-char -ansi -O -o leotune LeoTune.c -L./ -lleo
  5.     strip leotune
  6.     ls -la leotune LeoTune.c
  7.  
  8. guidecat: GuideCat.c libleo.a
  9.     gcc -funsigned-char -ansi -O -o guidecat GuideCat.c -L./ -lleo
  10.     strip guidecat
  11.     ls -la guidecat GuideCat.c
  12.  
  13. words: Words.c libleo.a
  14.     gcc -funsigned-char -ansi -O -o words Words.c -L./ -lleo
  15.     strip words
  16.     ls -la words Words.c
  17.  
  18. libleo.a: LeoLib.c LeoLib.h
  19.     gcc -funsigned-char -ansi -c -O -o libleo.o LeoLib.c
  20.     ar cur libleo.a libleo.o
  21. #    ranlib libleo.a
  22.  
  23. clean:
  24.     rm *~ ,* leotune guidecat words libleo.a *.o
  25.